home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / online / source / c / compilers / Bob 1.5.sit.hqx / Bob 1.5 / Test.bob < prev    next >
Text File  |  1990-08-15  |  159b  |  15 lines

  1. main()
  2. {
  3.     test(5);
  4.     test(12);
  5. }
  6.  
  7. test(n; i)
  8. {
  9.     for (i = 0; i <= n; ++i) {
  10.     if (i % 2 == 0) continue;
  11.     if (i > 10) break;
  12.     print("i=",i,"\n");
  13.     }
  14. }
  15.